home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / mtgrap1c / circle.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-29  |  563 b   |  27 lines

  1. /*****************************************************
  2. ; Filename     : circle.h
  3. ;
  4. ; Date         : 19-6-94
  5. ; Mod. Date    : 
  6. ;
  7. ; Info        : Obtained from Ferraro
  8. ;****************************************************/
  9. #ifndef    CIRCLE_H
  10. #define CIRCLE_H
  11.  
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16. void mtCircle(int x,int y, int radius, int color);
  17. void mtCCircle(int x,int y, int radius, int color);
  18.  
  19. void mtFillCircle(int x,int y, int radius,int color);
  20. void mtCFillCircle(int x,int y, int radius,int color);
  21.  
  22.  
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26.  
  27. #endif CIRCLE_H